home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Feb / di9802kw / WebPics.dpr < prev    next >
Text File  |  1997-08-19  |  386b  |  23 lines

  1. program WebPics;
  2.  
  3. {
  4.   Extract a picture from a database and display it on the web.
  5.  
  6.   Written by Keith Wood, 12 Aug 1997.
  7. }
  8.  
  9. {$APPTYPE CONSOLE}
  10.  
  11. uses
  12.   HTTPApp,
  13.   CGIApp2 in 'CGIApp2.pas',
  14.   WebPics1 in 'WebPics1.pas' {wmdWebPics: TWebModule};
  15.  
  16. {$R *.RES}
  17.  
  18. begin
  19.   Application.Initialize;
  20.   Application.CreateForm(TwmdWebPics, wmdWebPics);
  21.   Application.Run;
  22. end.
  23.